home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / com_net / mail / thor / thor.lha / rexx / getbbsconfig.thor < prev    next >
Encoding:
Text File  |  1994-08-06  |  615 b   |  27 lines

  1. /*
  2. **  getbbsconfig.thor - script that gets the bbs config from
  3. **                           THOR for the chosen bbs and prints it to the screen.
  4. **
  5. **    Will return 0 on success, and 10 if the BBS given was unknown.
  6. **
  7. **    Template:
  8. **
  9. **    BBSNAME=BBS/A
  10. */
  11.  
  12. options results
  13.  
  14. address "THOR.01"
  15.  
  16. GETBBSCONFIG '"Ultima Thule BBS"'
  17.  
  18. say "BBSConfig for Ultima Thule BBS:"
  19. say " BBSPath....:" BBSCONFIG.BBSPATH
  20. say " GrabName...:" BBSCONFIG.GRABNAME
  21. say " BBSType....:" BBSCONFIG.BBSTYPE
  22. say " UserName...:" BBSCONFIG.USERNAME
  23. say " Signature..:" BBSCONFIG.SIGNATURE
  24. say " Events.....:" BBSCONFIG.EVENTS
  25. say " Unread.....:" BBSCONFIG.UNREAD
  26.  
  27.